home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / extra / pro13 / tell.c < prev    next >
C/C++ Source or Header  |  1993-02-09  |  226b  |  17 lines

  1. /*
  2.     tell.C
  3.  
  4.     Copyright (C) 1993, Geoff Friesen B.Sc.
  5.     All rights reserved.
  6. */
  7.  
  8. #define    INCL_TELL
  9.  
  10. #ifndef INCL_LSEEK
  11. #include "lseek.C"
  12. #endif
  13.  
  14. long tell (int handle)
  15. {
  16.    return lseek (handle, 0L, SEEK_CUR);
  17. }